Update generate protein fasta and create peptide ordering form commands to use transcripts.fa - #1453
Open
susannasiebert wants to merge 5 commits into
Open
Update generate protein fasta and create peptide ordering form commands to use transcripts.fa#1453susannasiebert wants to merge 5 commits into
susannasiebert wants to merge 5 commits into
Conversation
…le instead of recreating it from original input data
…te generate protein fasta command docs
tmooney
reviewed
Aug 24, 2026
Member
There was a problem hiding this comment.
Does this file need to exist? Might be a candidate for removal and inclusion in .gitignore.
susannasiebert
commented
Aug 31, 2026
Co-authored-by: Thomas B. Mooney <mooney@wustl.edu> Co-authored-by: Susanna Kiwala <susanna.kiwala@wustl.edu>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Currently, the generate protein fasta and create peptide ordering form commands use the same inputs as the main pipeline and regenerate the transcripts.fa file from it. This can lead to confusion because the same parameters used in the original runs (e.g. --pass-only, --allow-incomplete-transcripts, --biotypes) need to be applied in these command in order for the indexes to be consistent (which are used for matching entries between the VCF and the aggregated report).
This PR updates these two commands to instead use the transcripts.fa files from the original runs as the input. This file was already created using the above flags/filters so the indexes will be consistent.
This PR also adds a new standalone command
generate_transcripts_fasta. This command generates the transcripts.fa. This is mostly useful for folks that used the generate protein fasta command without an accompanying pipeline run. This new command can now be used to generate the transcripts.fa for input to the updated generate protein fasta command.TODO: